home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************
- *
- * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
- * PURPOSE.
- *
- * Copyright (c) 1994 - 1995 Microsoft Corporation. All Rights Reserved.
- *
- **************************************************************************/
- // batchvw.h : interface of the CBatchView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CBatchView : public CView
- {
- protected: // create from serialization only
- CBatchView();
- DECLARE_DYNCREATE(CBatchView)
-
- // Attributes
- public:
- CBatchDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CBatchView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual void OnInitialUpdate();
- protected:
- virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
- virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CBatchView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CBatchView)
- afx_msg void OnDropFiles(HDROP hDropInfo);
- afx_msg void OnSize(UINT nType, int cx, int cy);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in batchvw.cpp
- inline CBatchDoc* CBatchView::GetDocument()
- { return (CBatchDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-